home *** CD-ROM | disk | FTP | other *** search
/ Aminet 38 / Aminet 38 (2000)(Schatztruhe)[!][Aug 2000].iso / Aminet / util / moni / Scout-src.lha / src / scout_globals.c < prev    next >
Encoding:
C/C++ Source or Header  |  2000-03-09  |  2.1 KB  |  55 lines

  1. /**
  2.  * Scout - The Amiga System Monitor
  3.  *
  4.  *------------------------------------------------------------------
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  * the Free Software Foundation; either version 2 of the License, or
  9.  * any later version.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; if not, write to the Free Software
  18.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  *
  20.  * You must not use this source code to gain profit of any kind!
  21.  *
  22.  *------------------------------------------------------------------
  23.  *
  24.  * @author Andreas Gelhausen
  25.  * @author Richard Körber <rkoerber@gmx.de>
  26.  */
  27.  
  28.  
  29.  
  30. #include "scout_globals.h"
  31.  
  32. extern struct ExecBase *SysBase;
  33.  
  34. unsigned char *ASL_LIBNAME          = "asl.library";
  35. unsigned char *CX_LIBNAME           = "commodities.library";
  36. unsigned char *DISKFONT_LIBNAME     = "diskfont.library";
  37. unsigned char *DOS_LIBNAME          = "dos.library";
  38. unsigned char *EXPANSION_LIBNAME    = "expansion.library";
  39. unsigned char *GRAPHICS_LIBNAME     = "graphics.library";
  40. unsigned char *ICON_LIBNAME         = "icon.library";
  41. unsigned char *IDENTIFY_LIBNAME     = "identify.library";
  42. unsigned char *INTUITION_LIBNAME    = "intuition.library";
  43. unsigned char *MUIMASTER_LIBNAME    = "muimaster.library";
  44. unsigned char *REXXSYS_LIBNAME      = "rexxsyslib.library";
  45. unsigned char *UTILITY_LIBNAME      = "utility.library";
  46.  
  47. unsigned char *INPUT_DEVNAME        = "input.device";
  48. unsigned char *TIMER_DEVNAME        = "timer.device";
  49.  
  50. unsigned char *CARD_RESNAME         = "card.resource";
  51. unsigned char *DISK_RESNAME         = "disk.resource";
  52. unsigned char *FILESYSTEM_RESNAME   = "FileSystem.resource";
  53. unsigned char *KEYMAP_RESNAME       = "keymap.resource";
  54.  
  55.